home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 7 / Night Owl Shareware (NOPV7)(Night Owl Publisher Inc.)(1992).bin / 038a / bash1_12.arj / BASH1-12.TAR / bash-1.12 / builtins / fg_bg.def < prev    next >
Text File  |  1991-11-06  |  3KB  |  127 lines

  1. This file is fg_bg.def, from which is created fg_bg.c.
  2. It implements the builtins "bg" and "fg" in Bash.
  3.  
  4. Copyright (C) 1987, 1989, 1991 Free Software Foundation, Inc.
  5.  
  6. This file is part of GNU Bash, the Bourne Again SHell.
  7.  
  8. Bash is free software; you can redistribute it and/or modify it under
  9. the terms of the GNU General Public License as published by the Free
  10. Software Foundation; either version 1, or (at your option) any later
  11. version.
  12.  
  13. Bash is distributed in the hope that it will be useful, but WITHOUT ANY
  14. WARRANTY; without even the implied warranty of MERCHANTABILITY or
  15. FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  16. for more details.
  17.  
  18. You should have received a copy of the GNU General Public License along
  19. with Bash; see the file COPYING.  If not, write to the Free Software
  20. Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  21.  
  22. $PRODUCES fg_bg.c
  23.  
  24. $BUILTIN fg
  25. $FUNCTION fg_builtin
  26. $DEPENDS_ON JOB_CONTROL
  27. $SHORT_DOC fg [job_spec]
  28. Place JOB_SPEC in the foreground, and make it the current job.  If
  29. JOB_SPEC is not present, the shell's notion of the current job is
  30. used.
  31. $END
  32.  
  33. #include <sys/types.h>
  34. #include <signal.h>
  35. #include "../shell.h"
  36. #include "../jobs.h"
  37.  
  38. extern int job_control;
  39. static int fg_bg ();
  40.  
  41. /* How to bring a job into the foreground. */
  42. int
  43. fg_builtin (list)
  44.      WORD_LIST *list;
  45. {
  46.   int fg_bit = 1;
  47.   register WORD_LIST *t = list;
  48.  
  49.   if (!job_control)
  50.     return (EXECUTION_SUCCESS);
  51.  
  52.   /* If the last arg on the line is '&', then start this job in the
  53.      background.  Else, fg the job. */
  54.  
  55.   while (t && t->next)
  56.     t = t->next;
  57.  
  58.   if (t && strcmp (t->word->word, "&") == 0)
  59.     fg_bit = 0;
  60.  
  61.   return (fg_bg (list, fg_bit));
  62. }
  63.  
  64. $BUILTIN bg
  65. $FUNCTION bg_builtin
  66. $DEPENDS_ON JOB_CONTROL
  67. $SHORT_DOC bg [job_spec]
  68. Place JOB_SPEC in the background, as if it had been started with
  69. `&'.  If JOB_SPEC is not present, the shell's notion of the current
  70. job is used.
  71. $END
  72.  
  73. /* How to put a job into the background. */
  74. int
  75. bg_builtin (list)
  76.      WORD_LIST *list;
  77. {
  78.   if (!job_control)
  79.     return (EXECUTION_SUCCESS);
  80.  
  81.   return (fg_bg (list, 0));
  82. }
  83.  
  84. /* How to put a job into the foreground/background. */
  85. static int
  86. fg_bg (list, foreground)
  87.      WORD_LIST *list;
  88.      int foreground;
  89. {
  90.   extern char *this_command_name;
  91.   sigset_t set, oset;
  92.   int job, status = EXECUTION_SUCCESS;
  93.  
  94.   BLOCK_CHILD (set, oset);
  95.   job = get_job_spec (list);
  96.  
  97.   if (job < 0 || job >= job_slots || !jobs[job])
  98.     {
  99.       if (job != DUP_JOB)
  100.     builtin_error ("No such job %s", list ? list->word->word : "");
  101.  
  102.       goto failure;
  103.     }
  104.  
  105.   /* Or if jobs[job]->pgrp == shell_pgrp. */
  106.   if (jobs[job]->job_control == 0)
  107.     {
  108.       builtin_error ("job %%%d started without job control", job + 1);
  109.       goto failure;
  110.     }
  111.  
  112.   status = start_job (job, foreground);
  113.   if (status >= 0)
  114.     {
  115.     /* win: */
  116.       UNBLOCK_CHILD (oset);
  117.       return (status);
  118.     }
  119.   else
  120.     {
  121.     failure:
  122.       UNBLOCK_CHILD (oset);
  123.       return (EXECUTION_FAILURE);
  124.     }
  125. }
  126.  
  127.